* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pontano Sans', sans-serif;
    background-color: #f9f7f2;
    color: #1F0735;
    font-size: 1rem; /* Базовый размер шрифта */
}

header {
    position: fixed;
    height: 6.25rem; /* 100px */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #A8E551;
    display: flex;
    align-items: center;
    font-family: Poppins, sans-serif;
    padding: 0 2.5rem; /* 40px */
    z-index: 15;
}

header .logo {
    position: absolute;
}

header .logo a {
    display: inline-block; /* Чтобы ссылка правильно оборачивала изображение */
}

header .logo img {
    width: 15.625rem; /* 250px */
    padding-left: 9.375rem; /* 150px */
    z-index: 10;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 7rem; /* 50px */
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: #1F0735;
    font-size: 1rem; /* 16px */
}

nav ul li a.active {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.25rem; /* 4px */
    text-decoration-color: #1F0735;
}

.header-button {
    position: absolute;
    right: 5rem; /* 40px */
}

.header-button .button {
    display: inline-block;
    padding: 0.625rem 1.25rem; /* 10px 20px */
    background-color: #7EB033;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 1rem; /* 4px */
    font-size: 1rem;
    transition: background-color 0.3s;
}

.header-button .button:hover {
     background: #6DAF50;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
 
        

.about-container {
            max-width: 1000px;
            margin: 120px auto 60px;
            padding: 0 30px;
        }
        
        .about-block {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .block-title {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 24px;
            color: #7FC263;
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .company-name {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 20px;
            color: #7FC263;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .about-text {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 18px;
            color: #1F0735;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .bold-text {
            font-weight: 700;
        }
        
        .cta-block {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-top: 50px;
        }
        
        .cta-text {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 24px;
            color: #1F0735;
            font-weight: 700;
            flex: 1;
        }
        
        .cta-button {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 18px;
            color: white;
            background: #7FC263;
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: #6DAF50;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        

.about-container {
            max-width: 1000px;
            margin: 120px auto 60px;
            padding: 0 30px;
        }
        
        .about-block {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .block-title {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 24px;
            color: #7FC263;
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .company-name {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 20px;
            color: #7FC263;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .about-text {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 18px;
            color: #1F0735;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .bold-text {
            font-weight: 700;
        }
        
        .cta-block {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #f9f7f2;
            padding: 20px;
            margin-top: 20px;
        }
        
        .cta-text {
            font-family: 'Pontano Sans', sans-serif;
            font-size: 22px;
            color: #1F0735;
            font-weight: 700;
            flex: 1;
        }
        
        .cta-button {
            font-family: 'Pontano Sans', sans-serif;;
            font-size: 18px;
            color: white;
            background: #7EB033;
            border: none;
            border-radius: 15px;
            padding: 15px 40px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: #6DAF50;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        





footer {
    background-color: #7FC263;
    height: 14rem; /* 250px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Poppins, sans-serif;
    margin-top: auto; /* Прижимает футер к низу */
}

footer .logo img {
    width: 18.75rem; /* 300px */
    padding-left: 11.875rem; /* 190px */
}

footer nav {
    justify-content: center;
}

footer nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 6.25rem; /* 100px */
}

footer nav ul li {
    display: inline-block;
}

footer nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem; /* 16px */
    font-family: Poppins, sans-serif;
}

footer .social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem; /* 20px */
    padding-right: 11.875rem; /* 190px */
}

footer .social-icons a img {
    width: 2.5rem; /* 40px */
    height: auto;
}

footer .social-icons a:hover img {
    transform: scale(1.1);
}

/* Скрываем мобильное меню на десктопе */
.mobile-menu-btn,
.mobile-menu {
    display: none;
}
